home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib43
/
mntlib
/
vfprintf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-11
|
174b
|
14 lines
#include <stdio.h>
#include <stdarg.h>
#include "lib.h"
int
vfprintf(fp, fmt, args)
FILE *fp;
const char *fmt;
va_list args;
{
return(_doprnt(fputc, fp, fmt, args));
}